Merged
Conversation
7c55ba2 to
530a0e1
Compare
Fine-tunes the PI0.5 Vision-Language-Action model on a LeRobot robotics dataset stored in S3, using Ray Data for CPU preprocessing and Ray Train for distributed GPU training. Key features: - Streams LeRobot v3 (parquet + mp4) data from S3 via a custom Ray Data datasource with anonymous S3 access - Preprocesses on CPU workers (rename cameras, HWC->CHW, /255 normalise) so GPU workers are never blocked on I/O or video decoding - Expert-only fine-tuning: only the 4 action/time projection heads are trained; the PaliGemma backbone stays frozen - BF16 mixed precision throughout (no GradScaler needed) - Linear-warmup + cosine-decay LR schedule - Fault-tolerant checkpointing via ray.train.report() - Declarative, cloud-agnostic compute config targeting 8x L40S GPUs Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Signed-off-by: Robert Nishihara <rkn@anyscale.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add vla fine tuning template